home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / packet / p_aa4re / mbb35src / desqview.asm < prev    next >
Encoding:
Assembly Source File  |  1991-02-16  |  601 b   |  24 lines

  1. ;--------------------------------------------------------------------------
  2. ; The DESQview "sleep" function added by N2GTE
  3. ;--------------------------------------------------------------------------
  4.  
  5. DESQview:
  6.  
  7.   IF present_dv
  8.  
  9.         PUSH    AX              ; save important regs
  10.         PUSH    BX
  11.         PUSH    CX
  12.         PUSH    SI
  13.  
  14.         MOV     AX, 1000H       ; set the DESQview call
  15.         INT     15H             ;   call it
  16.  
  17.         POP     SI              ; retrieve important regs
  18.         POP     CX
  19.         POP     BX
  20.         POP     AX
  21.         RET
  22.  
  23.   ENDIF
  24.